home *** CD-ROM | disk | FTP | other *** search
/ Alde ADA 1: #1 / CCCC 8804 Volume 1 Number 1 - Alde.iso / C / MISC / TUTOR / CTUTOR2.ARC / ONEINT.C < prev    next >
Encoding:
Text File  |  1985-02-05  |  256 b   |  10 lines

  1. main()
  2. {
  3. int index;
  4.    index = 13;
  5.    printf("The value of the index is %d\n",index);
  6.    index = 27;
  7.    printf("The value of the index is %d\n",index);
  8.    index = 10;
  9.    printf("The value of the index is %d\n",index);
  10. }